/* Container für die Sterne */
#stars-container {
    position: absolute;
    overflow: hidden;
}

/* Basis-Stil für alle Sterne */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 1;
    pointer-events: none; /* Sterne sollen Mausereignisse durchlassen */
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

/* Verschiedene Größen */
.star.small {
    width: 4px;
    height: 4px;
}

.star.medium {
    width: 5px;
    height: 5px;
}

.star.big {
    width: 6px;
    height: 6px;
}

/* Partikel-Effekte */
.particle {
    position: absolute;
    background: orange;
    border-radius: 50%;
    width: 2px;
    height: 2px;
    opacity: 1;
    pointer-events: none;
    animation: particleMove 0.5s forwards;
}

@keyframes particleMove {
    to {
        transform: translate(var(--px), var(--py));
        opacity: 0;
    }
}
